home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / planetkit / amigakit / amprefs.lha / AMprefs / Install < prev    next >
Text File  |  1994-09-29  |  475b  |  27 lines

  1. ; This is test of many of the features of the Installer
  2. ; Prints out debugging info if run from CLI
  3.  
  4. ; (transcript "On making \"T:Fred\"...")
  5.  
  6. (set @app-name "AMprefs")
  7. (set @default-dest "Sys:Prefs")
  8.  
  9. (copyfiles
  10.     (prompt "Copying program to Sys:Prefs")
  11.     (help @copyfiles-help)
  12.     (infos)
  13.     (source "AMprefs")
  14.     (dest "Sys:Prefs")
  15.     (files)
  16.     (confirm)
  17. )
  18.  
  19. (tooltype 
  20.     (prompt "Freeing icon position")
  21.     (help "No help here.")
  22.     (dest "Sys:Prefs/AMprefs")
  23.     (noposition)
  24.     (confirm)
  25. )
  26.  
  27.